home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / doc / ruby1.8 / README < prev    next >
Text File  |  2008-05-31  |  3KB  |  119 lines

  1. * What's Ruby
  2.  
  3. Ruby is the interpreted scripting language for quick and
  4. easy object-oriented programming.  It has many features to
  5. process text files and to do system management tasks (as in
  6. Perl).  It is simple, straight-forward, and extensible.
  7.  
  8.  
  9. * Features of Ruby
  10.  
  11.   + Simple Syntax
  12.   + *Normal* Object-Oriented features(ex. class, method calls)
  13.   + *Advanced* Object-Oriented features(ex. Mix-in, Singleton-method)
  14.   + Operator Overloading
  15.   + Exception Handling
  16.   + Iterators and Closures
  17.   + Garbage Collection
  18.   + Dynamic Loading of Object files(on some architecture)
  19.   + Highly Portable(works on many UNIX machines, and on DOS,
  20.     Windows, Mac, BeOS etc.)
  21.  
  22.  
  23. * How to get Ruby
  24.  
  25. The Ruby distribution files can be found in the following FTP site:
  26.  
  27.   ftp://ftp.ruby-lang.org/pub/ruby/
  28.  
  29. The latest source code of this version series can be checked out
  30. through SVN with the following command:
  31.  
  32.   $ svn co http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8/
  33.  
  34. The trunk of the Ruby source tree can be checked out with the
  35. following command:
  36.  
  37.   $ svn co http://svn.ruby-lang.org/repos/ruby/trunk/ ruby
  38.  
  39. There are some other branches under development.  Try the following
  40. command and see the list of branches:
  41.  
  42.   $ svn ls http://svn.ruby-lang.org/repos/ruby/branches/
  43.  
  44.  
  45. * Ruby home-page
  46.  
  47. The URL of the Ruby home-page is:
  48.  
  49.    http://www.ruby-lang.org/
  50.  
  51.  
  52. * Mailing list
  53.  
  54. There is a mailing list to talk about Ruby.
  55. To subscribe this list, please send the following phrase
  56.  
  57.     subscribe YourFirstName YourFamilyName
  58. e.g.
  59.         subscribe Joseph Smith
  60.  
  61. in the mail body (not subject) to the address <ruby-talk-ctl@ruby-lang.org>.
  62.  
  63.  
  64. * How to compile and install
  65.  
  66. This is what you need to do to compile and install Ruby:
  67.  
  68.   1. If ./configure does not exist or is older than configure.in,
  69.      run autoconf to (re)generate configure.
  70.  
  71.   2. Run ./configure, which will generate config.h and Makefile.
  72.  
  73.      Some C compiler flags may be added by default depending on your
  74.      environment.  Specify optflags=.. and warnflags=.. as necessary
  75.      to override them.
  76.  
  77.   3. Edit defines.h if you need.  Usually this step will not be needed.
  78.  
  79.   4. Remove comment mark(#) before the module names from ext/Setup (or
  80.      add module names if not present), if you want to link modules
  81.      statically.
  82.  
  83.      If you don't want to compile non static extension modules
  84.      (probably on architectures which does not allow dynamic loading),
  85.      remove comment mark from the line "#option nodynamic" in
  86.      ext/Setup.
  87.  
  88.   5. Run make.
  89.  
  90.   6. Optionally, run 'make test' to check whether the compiled Ruby
  91.      interpreter works well.  If you see the message "test succeeded",
  92.      your ruby works as it should (hopefully).
  93.  
  94.   7. Run 'make install'
  95.  
  96.      You may have to be a super user to install ruby.
  97.  
  98. If you fail to compile ruby, please send the detailed error report with
  99. the error log and machine/OS type, to help others.
  100.  
  101.  
  102. * Copying
  103.  
  104. See the file COPYING.
  105.  
  106.  
  107. * The Author
  108.  
  109. Feel free to send comments and bug reports to the author.  Here is the 
  110. author's latest mail address:
  111.  
  112.   matz@netlab.jp
  113.  
  114. -------------------------------------------------------
  115. created at: Thu Aug  3 11:57:36 JST 1995
  116. Local variables:
  117. mode: indented-text
  118. end:
  119.